home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
STRINGS
/
PACKAGE6
/
TO_TYPE.DOC
< prev
next >
Wrap
Text File
|
1990-07-25
|
1KB
|
35 lines
-----------------------------------------------------------------------------
ConvertToTypeString
-----------------------------------------------------------------------------
declaration: procedure ConvertToTypeString ( TurboString:
String;
var AString:
TypeString);
purpose: To convert a turbo-pascal string into a package string
preconditions: TurboString is defined. AString is undefined.
postconditions: AString filled with the contents of TurboString.
special cases: none
example: var
AString:
TypeString;
TurboString:
String;
begin
.
.
.
ConvertToTypeString (TurboString, AString);
.
.
.
end
-----------------------------------------------------------------------------